how to save information on pdf file in laravel project

41

$pdf = PDF::loadView('pdf.invoice', $data);

Storage::put('public/pdf/invoice.pdf', $pdf->output());

return $pdf->download('invoice.pdf');

Comments

Submit
0 Comments